*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Cairo', sans-serif;
}

body{
    background:#f4f4f4;
}

/* ================= NAVBAR ================= */

.navbar{
    position:absolute;
    top:0;
    right:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 7%;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}
.logo img{
    width: 200px;
}
.logo h3{
    font-size:18px;
    font-weight:800;
}

.logo span{
    font-size:11px;
    letter-spacing:2px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#000;
    font-weight:600;
}

.booking-btn{
    background:#f7a928;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
}
/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:32px;
    }

    .script-title{
        font-size:40px;
    }

    .contact-pill{
        padding:14px 25px;
    }

}
/* ================= MOBILE NAV ================= */

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#111;
    color:#fff;
    padding:30px;
    transition:0.4s ease;
    z-index:2000;
}

.mobile-menu ul{
    list-style:none;
    margin-top:50px;
}

.mobile-menu li{
    margin-bottom:25px;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

.mobile-menu.active{
    right:0;
}

.close-btn{
    text-align:left;
    font-size:20px;
    cursor:pointer;
}

.overlay-menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:none;
    z-index:1500;
}

.overlay-menu.active{
    display:block;
}

/* Responsive */

@media(max-width:992px){

    .nav-links{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .booking-btn{
        display:none;
    }
}
.about {
  background: #f3f3f3;
  padding: 120px 0;
  text-align: center;
  position: relative;
  margin-top: 100px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.title {
  font-size: 72px;
  font-weight: 800;
  color: #f7a928;
  margin-bottom: 30px;
}

.description {
  max-width: 850px;
  margin: auto;
  line-height: 1.9;
  font-size: 18px;
  color: #444;
  margin-bottom: 100px;
}

/* الثلاث صور */
.three-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.side img {
  width: 280px;
  height: 420px;
  border-radius: 30px;
  object-fit: cover;
}

.middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;  /* ينزل الصورة الوسط سنة */
}

.middle img {
  width: 320px;
  height: 460px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.call {
  font-size: 22px;
  margin-bottom: 30px;
  color: #444;
}
/* بداية قبل الظهور */
.side,
.middle,
.big-wrapper,
.title,
.description {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* لما العنصر يظهر */
.show {
  opacity: 1;
  transform: translateY(0);
}

/* نخلي صورة النص تطلع أقوى سنة */
.middle {
  transition-delay: 0.2s;
}

/* Hover خفيف للصور */
.side img,
.middle img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.side img:hover,
.middle img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
/* ================= Responsive ================= */
@media (max-width: 992px) {

  /* نخلي الكونتينر عادي */
  .title {
    font-size: 40px;
  }

  .description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  /* الثلاث صور بنظام Grid */
  .three-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }

  /* صورة النص تبقى أول صف لوحدها */
  .middle {
    grid-column: 1 / -1; /* تاخد الصف كله */
    order: 1;
    margin-top: 0;
  }

  /* العنوان والكلام بعد صورة النص */
  .title {
    order: 2;
  }

  .description {
    order: 3;
  }

  /* الصورتين جنب بعض */
  .side.left {
    grid-column: 1 / 2;
  }

  .side.right {
    grid-column: 2 / 3;
  }

  .side img,
  .middle img {
    width: 100%;
    height: 220px;
  }
}
.vm-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background: url("../media/Untitled.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
}

.vm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.vm-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 2;
}

.vm-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 45px;
  border-radius: 12px;

  background: linear-gradient(
  135deg,
  rgba(233, 201, 151, 0.35),
  rgba(247, 168, 40, 0.51)
);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.25);

  color: #fff;

  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(.17,.67,.38,1);
}

.vm-card.show {
  transform: translateY(0);
  opacity: 1;
}

.vm-icon {
  font-size: 38px;
  min-width: 50px;
}

.vm-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.vm-content p {
  line-height: 1.6;
  font-size: 16px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .vm-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .vm-icon {
    margin-bottom: 15px;
  }
}
.footer{
    background:#f5f5f5;
    padding:60px 5%;
    direction: rtl;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top: 60px;
}

.footer-col{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-col h4{
    font-size:16px;
    color:#caa33c;
    margin-bottom:10px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#caa33c;
}

/* Logo */
.logo-col img{
    width:110px;
}

/* Map */
.map-col img{
    width:70px;
    height:70px;
    object-fit:cover;
}

/* Contact Section */
.contact-col p{
    font-size:14px;
    color:#555;
}

.contact-btn{
    background:#f4a51c;
    border:none;
    padding:12px 40px;
    border-radius:50px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#ffb733;
}
@media(max-width:992px){

    .footer-container{
        flex-direction:row;
        align-items:center;
        text-align:center;
    }

}
